home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib2 / v_02_01 / 2n01043a < prev    next >
Encoding:
Text File  |  1995-11-01  |  520 b   |  25 lines

  1. (*
  2.     Ega/Vga Graphics Driver for Panel Unit
  3.  
  4.         Turbo Pascal 4 Unit
  5.  
  6.         **************************************************
  7.         NOTE:   All compilations should have the boolean
  8.                 evaluation option set to "short-circuit"
  9.         **************************************************
  10.  
  11.     June 26, 1990  --  Michael Kelly  --  Version 1.01    *)
  12.  
  13. Unit PanelDrv;
  14.  
  15. Interface
  16.  
  17. Procedure EgaVgaDriverProc;
  18.  
  19. Implementation
  20.  
  21. Procedure EgaVgaDriverProc; external;
  22. {$L EGAVGA.OBJ }
  23.  
  24. End.
  25.